.match-header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-radius: 12px;
    background: var(--on-background-color);
    border: 1px solid var(--border-color);
}

.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.team-side {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team-logo {
    height: 32px;
    width: 32px;
}

.team-score {
    font-size: 32px;
    font-weight: 700;
}

.team-score.win { color: var(--accent-color); }
.team-score.lose { color: var(--primary-text-color); }